By including a session cookie, the Domino server thinks that your script is actually a human user who recently logged in and is now accessing the database. 通过包含会话cookie,Domino服务器会将您的脚本视为最近登录过、现正访问数据库的实际人类用户。
You can find the Domino session cookie in the Set-Cookie response header. 您可在Set-Cookie响应头中找到Domino会话cookie。
The ability to forge such session cookies ( or more generally, session tokens) stems from the fact that the tokens are not generated in a secure way. 这种打造的能力,像会话cookie(或者更通俗地说,会话标识)源自于这些标识不是以安全的方式产生的事实。
However, for this code to work, the CherryPy server needs to be set up to associate a session cookie with each HTTP response. 可是,为了这些代码起作用,需要设置CherryPy服务器将会话cookie与每个HTTP响应相关联。
The product uses two cookies to identify a session. 这个产品利用两个cookie来鉴定一个会话。
A session cookie is used as a key to retrieve session data from memory and handle the request. 会话cookie被用作从内存检索会话数据和处理请求的密钥。
You tell Domino your identity by appending a session cookie to the request headers. 您的会话cookie附于请求头上,以告知Domino您的身份。
A session cookie in conjunction with a random auth token or auth login validation is both reasonable mechanisms. 一个连接中的会话cookie与一个随机鉴定标识或者鉴定登陆审核都是合理的机制。
Application Server only creates the session cookie for this user and assumes that this user has been authenticated. ApplicationServer只为这个用户创建会话cookie,并假设这个用户已经被认证。
Storing session state in the client using HTTP cookies or hidden form fields has significant security risks& it exposes a part of your application internals to the untrusted client layer. 在客户端用HTTPcookie或者隐藏表单字段存储会话状态有很大的安全风险&它将应用程序的一部分内部内容暴露给了非受信任的客户层。
Obtaining the Domino session cookie is an important part of the process, and you can use the same code in other Domino-related applications. 获得Domino会话cookie是此流程的重要部分,您可将相同的代码用于其他与Domino相关的应用程序中。
Keep-session-cookies saves the session cookies instead of keeping them in memory, which is useful on sites that require access to other pages. keep-session-cookies保存会话cookie,而不是将它们留在内存中,这对于需要访问其他页面的站点比较有用。
Finally, applications can share session information through the WI system, eliminating the need to pass information through URL parameters or cookies. 最后,应用程序可以通过WI系统共享会话信息,从而消除通过URL参数或Cookie传递信息的需求。
A decode method could read values from session, cookies, headers, request, etc. decode方法可以从会话、cookie、头、请求等处读取值。
Cookie-based session affinity helps Web applications work with session information in an elegant and efficient fashion. 基于cookie的会话亲和性帮助Web应用程序高效优雅地处理会话信息。
From the login response, get a session cookie. 从登录响应中获得会话cookie。
In most CGI applications, much of the state is stored in a database, but only a session ID is passed to each script via a cookie. 在大多数CGI应用程序中,大部分状态存储在数据库中,只有会话ID通过cookie传递给每个脚本。
It requests that the portal creates a session cookie whenever a page containing the portlet is accessed, even if no user login exists. 它请求门户在每当包含该Portlet的页面被访问时,即使不存在任何用户登录,也要创建会话Cookie。
Therefore the next time the user returns to the site a persistent cookie remains, but the user ID is no longer in the Session object, and therefore the user must log in again. 因此,当该用户下一次重返站点时,虽然保留了一个持久cookie,但用户ID不在Session对象中,因此用户必须再次登录。
You can also similarly limit the HTTP Session ( JSESSION by default) cookie to SSL only as well by specifying a similar setting on the session management panel. 通过在会话管理面板上指定相似的设置,还可以把HTTPSession(默认情况下是JSESSION)cookie限制为只使用SSL。
A user is prompted for a user name and password and given a session cookie or session header. 用户会获得提示,要求输入用户名和口令,并将口令和密码保存在会话cookie或会话header中。
You get the session cookie by sending a POST request to the Domino server. 通过向Domino服务器发送POST请求获取会话cookie。
This will get you to the point of consistency within a browsing session, or possibly for the lifetime of the cookie. 这样就出现了浏览器会话的一致性问题,或者是有关cookie生命周期的问题。
In this way, a J2EE application that requires session management doesn't need to rely on cookies being enabled by users of the application. 这样,需要会话管理的J2EE应用程序就无需依赖由应用程序用户启用的cookie了。
When a user authenticates for the first time, the PHP application, after retrieving the session cookie, asks this agent for the location of the user's mail file. 用户首次进行身份验证时,PHP应用程序首先检索会话cookie,随后要求此代理提供用户邮件文件的位置。
If you don't need sessions, the session handler can be removed so we don't even waste the cycles looking for a session cookie. 如果不需要Session就可以移除Session处理器,这样我们连会话Cookie都不用找了,大大节省了时间。
Specifies whether the role names cookie is a session cookie; that is, the cookie is lost when the browser is closed. 指定角色名称cookie是否为会话cookie;即,该cookie会在浏览器关闭时丢失。
Specifies the period for which a session cookie is valid. 指定会话cookie的有效期。
Cookie and Session technologies can overcome the restriction of HTTP in state preservation, which are deeply analyzed in this dissertation. Cookie技术和基于Cookie的Session技术能够克服HTTP的局限,保存跨页面的状态信息,本文对这两种技术进行了详细的分析。
A session identifier ( SID) is a unique string of random data ( typically consisting of numbers and characters) that is generated by a Web application and propagated to the client, usually through the means of a cookie. 会话标识是随机数据的唯一字符串,一般来说由数字和字符组成,这个字符串由web应用生成并通过cookie的方式发送给用户。